for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export const bar = (baz) => {
return baz ? 1 : (baz ? 3 : 4);
console.log(100) // unreachable
console.log
}
if (a == b) {
a
/** global: a */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
b
/** global: b */
console.log(1);